/* Design by Joievelle Leslie 2001095

Schools Faculties and Careers CSS */


.header{
background-color: #4c4949;
height: 15%;
}		
.footer{
background-color: #4c4949;
height: 15%;
}

/*.nav{
float:right;
margin: 25px;
}

.nav a {
margin-right: 20px; /* word spacing 
}*/



p{
 color: black;
 font-family: sans serif;
 font-size:14pt;
 text-align: center;
}

.nav {
  display: flex;
  float:right;
  justify-content: space-between; /* space between nav links and search */
  padding: 10px 20px;
  gap:10px;
  flex-wrap: wrap; /* allow it to wrap on smaller screens */
}

.nav2{
	/*float:left;*/
	margin: 15px;
	display: flex;
	justify-content: center; /* Centers horizontally */			
}	

.nav a {
  text-decoration: none;
  color: white;
  font-family: 'MIXONE';
  font-size:18pt;
  text-align:center;
  font-weight: 500;
  padding: 8px 12px;
  transition: 0.2s;
}

.nav a:hover {
  background-color: #ddd;
  border-radius: 5px;
}

.nav2 a {
  text-decoration: none;
  color: white;
 font-family: 'MIXONE';
 font-size:18pt;
 text-align:center;

  font-weight: 500;
  padding: 8px 12px;
  transition: 0.2s;
}		

.nav2 a:hover {
  background-color: #ddd;
  border-radius: 5px;
}

@font-face {
	font-family: 'MIXONE';
	src: url('Assets/Fonts/MIXONE.ttf') format('truetype');
}	
			   


h1{
 color: black;
 font-family: Sans serif;
 font-size:48pt;
 text-align:center;
}	

h2{
 color: white;
 font-family: sans serif;
 font-size:48pt;
 text-align:center;
} 


/* ========================= Ensure the whole page takes up full height=========================== */
html, body {
margin: 0;
padding: 0;
height: 100%;
background-repeat:no-repeat;
background-position: center;
background-color:#60423F;
/*background-image: url('./banner.jpg');*/
/*background-attachment: fixed;*/
background-size: 100% 100%;																				
}

.image-box {
  width: 100%;
  height: 300px; /* narrow height */
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}
.image-box2 {
  width: 100%;
  height: 500px; 
  overflow: hidden;
  border: 1px solid #ccc;
}

.image-box3 {
  width: 100%;
  height: 800px; 
  overflow: hidden;
  border: 1px solid #ccc;
}

.raised-box {
  padding: 10px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
  /*height: 700px;*/
  width: 100%;
  margin:0px;
}

.dropdown {
  width: 220px;
  height: 45px;
  font-size: 18px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  float:right;
}


/*Align 3 images agross screen equally*/

* { 
box-sizing: border-box;
} 
	

  .column img {
    width: 100%;
    height: 200px; 
    object-fit: cover; 
    border-radius: 8px; 
  }

  .column {
    width: 30%; /* adjust based on layout */
    margin: 1%;
    display: inline-block;
    vertical-align: top;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .column p {
    text-align: center;
    margin-top: 10px;
	color: black;
  }

/************************************************************************/
  .info-panel {
    display: none;
    width: 100%;
    background-color: #f9f9f9;
    padding: 20px;
    margin-top: 20px;
    border-top: 2px solid #ccc;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  

 .info-section {
    background-color: #212b6e; 
    color: white;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .text-content {
    width: 60%;
  }



  .text-content p {
  color:white;
  float:left;
    font-size: 18px;
    line-height: 1.6;
  }
  
  .text-content a {
  color:white;
 text-align:left;
  font-size: 18px;
  line-height: 1.6;
  }
  
 .text-content a:hover {
  background-color: #1c0813;
  border-radius: 5px;
}
  .stats {
    text-align: center;
    width: 50%;
  }

  .circle {
    background-color: #ffffff;
    color: #006c9e;
    font-size: 48px;
    font-weight: bold;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
  }

  .stat-text {
    font-size: 18px;
    font-weight: normal;
	color:white;
  }		  